home *** CD-ROM | disk | FTP | other *** search
- /* Cross Pointer Installation Program
- Copyright 1996 Creative Systems P.O. Box 241111 Anchorage, AK 99524-1111
- 74127.2657@compuserve.com */
-
- options etmode
- options exmode
- call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
- call SysLoadFuncs
-
- /* Determine Boot Drive */
- bootdrive = Substr(Translate(Value('PATH',,'OS2ENVIRONMENT')),Pos('\OS2\SYSTEM',Translate(Value('PATH',,'OS2ENVIRONMENT')))-2,2)
-
- /* Build Destination Directory */
- Directory = bootdrive"\OS2\POINTERS\WHTCROSS"
-
- /* Create The Target Directory if Necessary */
- Result = SysFileTree( Directory, 'Dirs', 'D' )
- If Dirs.0 = 0 Then
- Do
- Result = SysMkDir( Directory )
- if Result <> 0 Then
- Do
- Say 'ERROR: Unable to create the' Directory 'directory.'
- Exit
- End
- End
-
- /* Copy Files */
- Say 'Installing new pointers. . .'
- 'COPY *.PTR' Directory
-
- /* Give Instructions on How to Load Pointers */
- Call Syscls
- Say 'The pointer files have been installed. Now you just need to load them.'
- Say 'Here''s how:'
- Say
- Say '1. Enter the System Setup. (In the OS/2 System Folder)'
- Say '2. Select the Mouse icon, and then choose the "Pointers" tab.'
- Say '3. Choose "Load Set..." and select "WHTCROSS"'
- Say ' '
- Say 'Hit ENTER to continue once you''re done. . .'
- PULL
-
- /* Engage in Shameless Self-Promotion */
- Call Syscls
- Say 'Your new Cross pointers are now installed!'
- Say ' '
- Say 'They are provided free-of-charge from Creative Systems, the foremost'
- Say 'developer of Bible Software for OS/2. Please take the time to download'
- Say 'the WordWise Daily Scripture Calendar for OS/2, with built-in support'
- Say 'for over 30 versions of the Bible, and the CODEX Bible Concordance for'
- Say 'OS/2. Both programs may be found at most any OS/2 software site (such'
- Say 'as ftp-os2.nmsu.edu) as ww_os215.zip and bible_09.zip, respectively.'
- Say
- Say 'If you have questions, or would like to be added to the mailing list'
- Say 'for the OS/2 Bible Software newsletter, just send a note to me (J.'
- Say 'Brandon Barnes) at 74127.2657@compuserve.com.'
- Say
- Say 'God Bless.'
- Say
- Say '(Hit ENTER to exit)'
- PULL
- Exit